home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
snip9503
/
treedir.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-14
|
1KB
|
55 lines
/*
** TREEDIR.C - simple recursive directory lister
**
** public domain demo by Bob Stout
*/
#include <stdio.h>
#include <string.h>
#if defined(__ZTC__)
#include <dos.h>
#ifndef _A_SUBDIR
#define _A_SUBDIR FA_DIREC
#endif
#elif defined(__TURBOC__)
#include <dir.h>
#include <dos.h>
#define _dos_findfirst(f,a,b) findfirst(f,b,a)
#define _dos_findnext(b) findnext(b)
#define find_t ffblk
#define _A_SUBDIR FA_DIREC
#define attrib ff_attrib
#define name ff_name
#else /* assume MSC/QC */
#include <dos.h>
#include <errno.h>
#endif
#ifndef SUCCESS
#define SUCCESS 0
#endif
void do_dir(char *path)
{
char search[67], newpath[67];
struct find_t ff;
strcat(strcpy(search, path), "\\*.*");
if (SUCCESS == _dos_findfirst(search, 0xff, &ff)) do
{
printf("%s\\%s\n", path, ff.name);
if (ff.attrib & _A_SUBDIR && '.' != *ff.name)
{
strcat(strcat(strcpy(newpath, path), "\\"), ff.name);
do_dir(newpath);
}
} while (SUCCESS == _dos_findnext(&ff));
}
main() /* simple resursive current directory lister */
{
do_dir(".");
return 0;
}